home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / comm2 / termsorc.lha / Extras / Source / gtlayout-source.lha / LT_Refresh.c < prev    next >
C/C++ Source or Header  |  1995-09-24  |  525b  |  30 lines

  1. /*  GadTools layout toolkit
  2. **
  3. **  Copyright © 1993-1995 by Olaf `Olsen' Barthel
  4. **  Freely distributable.
  5. */
  6.  
  7. #include "gtlayout_global.h"
  8.  
  9. VOID LIBENT
  10. LT_BeginRefresh(REG(a0) LayoutHandle *handle)
  11. {
  12.     if(handle)
  13.     {
  14.         GT_BeginRefresh(handle -> Window);
  15.  
  16.         LTP_DrawGroup(handle,handle -> TopGroup);
  17.     }
  18. }
  19.  
  20.  
  21. /*****************************************************************************/
  22.  
  23.  
  24. VOID LIBENT
  25. LT_EndRefresh(REG(a0) LayoutHandle *handle,REG(d0) BOOL complete)
  26. {
  27.     if(handle)
  28.         GT_EndRefresh(handle -> Window,complete);
  29. }
  30.